Es importante tener en cuenta que si el token tiene permisos el listado, sino retorna error.
{success} GET: /api/webhooks/events
use GuzzleHttp\Client;
$client = new Client();
$res = $client->request("GET", "{$endpoint}/api/webhooks/events");
$events = json_decode($res->getBody(), true);
return $events;
[
{
"id": 1,
"name": "Create Contact",
"slug": "contact.created",
"description": "This Webhook will create a contact in the system configured in the subscription"
}
]